func net/url.unescape
15 uses
net/url (current package)
url.go#L89: return unescape(s, encodeQueryComponent)
url.go#L100: return unescape(s, encodePathSegment)
url.go#L105: func unescape(s string, mode encoding) (string, error) {
url.go#L529: if userinfo, err = unescape(userinfo, encodeUserPassword); err != nil {
url.go#L535: if username, err = unescape(username, encodeUserPassword); err != nil {
url.go#L538: if password, err = unescape(password, encodeUserPassword); err != nil {
url.go#L563: unescapedColonPort, err := unescape(colonPort, encodeHost)
url.go#L578: hostPart, err := unescape(hostname[:zoneIdx], encodeHost)
url.go#L582: zonePart, err := unescape(hostname[zoneIdx:], encodeZone)
url.go#L589: unescapedHostname, err = unescape(hostname, encodeHost)
url.go#L635: if host, err = unescape(host, encodeHost); err != nil {
url.go#L660: path, err := unescape(p, encodePath)
url.go#L688: p, err := unescape(u.RawPath, encodePath)
url.go#L727: frag, err := unescape(f, encodeFragment)
url.go#L751: f, err := unescape(u.RawFragment, encodeFragment)
 |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |